home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
xlisp2.1
/
xldist01.zoo
/
lsp
/
ackerman.lsp
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Lisp/Scheme
|
1990-11-09
|
116 b
|
5 lines
(defun ack (m n)
(cond ((zerop m) (1+ n))
((zerop n) (ack (1- m) 1))
((ack (1- m) (ack m (1- n))))))